html {
  background-color: rgb(16, 17, 31);
}

.highlight {
  box-shadow: 0 0 10px 5px rgba(255, 255, 0, 0.7);
  transition: box-shadow 0.4s ease;
}

body {
  overflow-x: hidden;
}

.popup {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%) translateY(30px);
  padding: 20px;
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: center;
  z-index: 100;
  color: #000;
  font-size: 16px;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.popup.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}



.video-container {
  width: 50vw;
  height: 55vh;
  left: 25vw;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background-color: #ccc;
  scale: 1.2;
  border-radius: 5px;
}

@media (max-width: 600px) {
  .video-container {
    width: 600px;
  }
}


.video-iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 10;
}

.video-text {
  color: white;
  font-size: 36px;
  text-align: center;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.2);
  padding-right: 5px;
  border-radius: 10px;
  z-index: 20;
}

.b-main-text {
  background-color: #000;
  opacity: 0.7;
  padding: 0 10px;
  border-radius: 10px;
}
